home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / program / swaga_c.zip / CRC.SWG / 0006_File CRC Routines.pas < prev    next >
Pascal/Delphi Source File  |  1993-05-28  |  10KB  |  309 lines

  1. {
  2. Author: FLOOR A.C. NAAIJKENS
  3.  
  4. Part of The ECO Library II:
  5. }
  6.  
  7. Unit Eco_CRC;
  8.  
  9. Interface
  10.  
  11. Function __CRC32(Value: Byte; CRC : LongInt) : LongInt;
  12. Function __CRC16(Value: Byte; CRC : Word)    : Word;
  13.  
  14. Implementation
  15.  
  16. Function  __crc32(value: Byte; crc: LongInt): LongInt;
  17. Const
  18.   crc32_table : Array[0..255] of LongInt = (
  19.     $00000000, $77073096, $ee0e612c, $990951ba, $076dc419, $706af48f,
  20.     $e963a535, $9e6495a3, $0edb8832, $79dcb8a4, $e0d5e91e, $97d2d988,
  21.     $09b64c2b, $7eb17cbd, $e7b82d07, $90bf1d91, $1db71064, $6ab020f2,
  22.     $f3b97148, $84be41de, $1adad47d, $6ddde4eb, $f4d4b551, $83d385c7,
  23.     $136c9856, $646ba8c0, $fd62f97a, $8a65c9ec, $14015c4f, $63066cd9,
  24.     $fa0f3d63, $8d080df5, $3b6e20c8, $4c69105e, $d56041e4, $a2677172,
  25.     $3c03e4d1, $4b04d447, $d20d85fd, $a50ab56b, $35b5a8fa, $42b2986c,
  26.     $dbbbc9d6, $acbcf940, $32d86ce3, $45df5c75, $dcd60dcf, $abd13d59,
  27.     $26d930ac, $51de003a, $c8d75180, $bfd06116, $21b4f4b5, $56b3c423,
  28.     $cfba9599, $b8bda50f, $2802b89e, $5f058808, $c60cd9b2, $b10be924,
  29.     $2f6f7c87, $58684c11, $c1611dab, $b6662d3d, $76dc4190, $01db7106,
  30.     $98d220bc, $efd5102a, $71b18589, $06b6b51f, $9fbfe4a5, $e8b8d433,
  31.     $7807c9a2, $0f00f934, $9609a88e, $e10e9818, $7f6a0dbb, $086d3d2d,
  32.     $91646c97, $e6635c01, $6b6b51f4, $1c6c6162, $856530d8, $f262004e,
  33.     $6c0695ed, $1b01a57b, $8208f4c1, $f50fc457, $65b0d9c6, $12b7e950,
  34.     $8bbeb8ea, $fcb9887c, $62dd1ddf, $15da2d49, $8cd37cf3, $fbd44c65,
  35.     $4db26158, $3ab551ce, $a3bc0074, $d4bb30e2, $4adfa541, $3dd895d7,
  36.     $a4d1c46d, $d3d6f4fb, $4369e96a, $346ed9fc, $ad678846, $da60b8d0,
  37.     $44042d73, $33031de5, $aa0a4c5f, $dd0d7cc9, $5005713c, $270241aa,
  38.     $be0b1010, $c90c2086, $5768b525, $206f85b3, $b966d409, $ce61e49f,
  39.     $5edef90e, $29d9c998, $b0d09822, $c7d7a8b4, $59b33d17, $2eb40d81,
  40.     $b7bd5c3b, $c0ba6cad, $edb88320, $9abfb3b6, $03b6e20c, $74b1d29a,
  41.     $ead54739, $9dd277af, $04db2615, $73dc1683, $e3630b12, $94643b84,
  42.     $0d6d6a3e, $7a6a5aa8, $e40ecf0b, $9309ff9d, $0a00ae27, $7d079eb1,
  43.     $f00f9344, $8708a3d2, $1e01f268, $6906c2fe, $f762575d, $806567cb,
  44.     $196c3671, $6e6b06e7, $fed41b76, $89d32be0, $10da7a5a, $67dd4acc,
  45.     $f9b9df6f, $8ebeeff9, $17b7be43, $60b08ed5, $d6d6a3e8, $a1d1937e,
  46.     $38d8c2c4, $4fdff252, $d1bb67f1, $a6bc5767, $3fb506dd, $48b2364b,
  47.     $d80d2bda, $af0a1b4c, $36034af6, $41047a60, $df60efc3, $a867df55,
  48.     $316e8eef, $4669be79, $cb61b38c, $bc66831a, $256fd2a0, $5268e236,
  49.     $cc0c7795, $bb0b4703, $220216b9, $5505262f, $c5ba3bbe, $b2bd0b28,
  50.     $2bb45a92, $5cb36a04, $c2d7ffa7, $b5d0cf31, $2cd99e8b, $5bdeae1d,
  51.     $9b64c2b0, $ec63f226, $756aa39c, $026d930a, $9c0906a9, $eb0e363f,
  52.     $72076785, $05005713, $95bf4a82, $e2b87a14, $7bb12bae, $0cb61b38,
  53.     $92d28e9b, $e5d5be0d, $7cdcefb7, $0bdbdf21, $86d3d2d4, $f1d4e242,
  54.     $68ddb3f8, $1fda836e, $81be16cd, $f6b9265b, $6fb077e1, $18b74777,
  55.     $88085ae6, $ff0f6a70, $66063bca, $11010b5c, $8f659eff, $f862ae69,
  56.     $616bffd3, $166ccf45, $a00ae278, $d70dd2ee, $4e048354, $3903b3c2,
  57.     $a7672661, $d06016f7, $4969474d, $3e6e77db, $aed16a4a, $d9d65adc,
  58.     $40df0b66, $37d83bf0, $a9bcae53, $debb9ec5, $47b2cf7f, $30b5ffe9,
  59.     $bdbdf21c, $cabac28a, $53b39330, $24b4a3a6, $bad03605, $cdd70693,
  60.     $54de5729, $23d967bf, $b3667a2e, $c4614ab8, $5d681b02, $2a6f2b94,
  61.     $b40bbe37, $c30c8ea1, $5a05df1b, $2d02ef8d
  62.   );
  63.  
  64. begin
  65.   if crc = 0 then
  66.     crc := $ffffffff; { must be set high to start With }
  67.   __crc32 := crc32_table[Byte(crc xor LongInt(value))] xor
  68.              ((crc shr 8) and $00ffffff);
  69. end;
  70.  
  71.  
  72.  
  73. Function  __crc16(value: Byte; crc: Word): Word;
  74. Const
  75.   crc16_table : Array[0..255] of Word = (
  76.      $0000,  $1021,  $2042,  $3063,  $4084,  $50a5,  $60c6,  $70e7,
  77.      $8108,  $9129,  $a14a,  $b16b,  $c18c,  $d1ad,  $e1ce,  $f1ef,
  78.      $1231,  $0210,  $3273,  $2252,  $52b5,  $4294,  $72f7,  $62d6,
  79.      $9339,  $8318,  $b37b,  $a35a,  $d3bd,  $c39c,  $f3ff,  $e3de,
  80.      $2462,  $3443,  $0420,  $1401,  $64e6,  $74c7,  $44a4,  $5485,
  81.      $a56a,  $b54b,  $8528,  $9509,  $e5ee,  $f5cf,  $c5ac,  $d58d,
  82.      $3653,  $2672,  $1611,  $0630,  $76d7,  $66f6,  $5695,  $46b4,
  83.      $b75b,  $a77a,  $9719,  $8738,  $f7df,  $e7fe,  $d79d,  $c7bc,
  84.      $48c4,  $58e5,  $6886,  $78a7,  $0840,  $1861,  $2802,  $3823,
  85.      $c9cc,  $d9ed,  $e98e,  $f9af,  $8948,  $9969,  $a90a,  $b92b,
  86.      $5af5,  $4ad4,  $7ab7,  $6a96,  $1a71,  $0a50,  $3a33,  $2a12,
  87.      $dbfd,  $cbdc,  $fbbf,  $eb9e,  $9b79,  $8b58,  $bb3b,  $ab1a,
  88.      $6ca6,  $7c87,  $4ce4,  $5cc5,  $2c22,  $3c03,  $0c60,  $1c41,
  89.      $edae,  $fd8f,  $cdec,  $ddcd,  $ad2a,  $bd0b,  $8d68,  $9d49,
  90.      $7e97,  $6eb6,  $5ed5,  $4ef4,  $3e13,  $2e32,  $1e51,  $0e70,
  91.      $ff9f,  $efbe,  $dfdd,  $cffc,  $bf1b,  $af3a,  $9f59,  $8f78,
  92.      $9188,  $81a9,  $b1ca,  $a1eb,  $d10c,  $c12d,  $f14e,  $e16f,
  93.      $1080,  $00a1,  $30c2,  $20e3,  $5004,  $4025,  $7046,  $6067,
  94.      $83b9,  $9398,  $a3fb,  $b3da,  $c33d,  $d31c,  $e37f,  $f35e,
  95.      $02b1,  $1290,  $22f3,  $32d2,  $4235,  $5214,  $6277,  $7256,
  96.      $b5ea,  $a5cb,  $95a8,  $8589,  $f56e,  $e54f,  $d52c,  $c50d,
  97.      $34e2,  $24c3,  $14a0,  $0481,  $7466,  $6447,  $5424,  $4405,
  98.      $a7db,  $b7fa,  $8799,  $97b8,  $e75f,  $f77e,  $c71d,  $d73c,
  99.      $26d3,  $36f2,  $0691,  $16b0,  $6657,  $7676,  $4615,  $5634,
  100.      $d94c,  $c96d,  $f90e,  $e92f,  $99c8,  $89e9,  $b98a,  $a9ab,
  101.      $5844,  $4865,  $7806,  $6827,  $18c0,  $08e1,  $3882,  $28a3,
  102.      $cb7d,  $db5c,  $eb3f,  $fb1e,  $8bf9,  $9bd8,  $abbb,  $bb9a,
  103.      $4a75,  $5a54,  $6a37,  $7a16,  $0af1,  $1ad0,  $2ab3,  $3a92,
  104.      $fd2e,  $ed0f,  $dd6c,  $cd4d,  $bdaa,  $ad8b,  $9de8,  $8dc9,
  105.      $7c26,  $6c07,  $5c64,  $4c45,  $3ca2,  $2c83,  $1ce0,  $0cc1,
  106.      $ef1f,  $ff3e,  $cf5d,  $df7c,  $af9b,  $bfba,  $8fd9,  $9ff8,
  107.      $6e17,  $7e36,  $4e55,  $5e74,  $2e93,  $3eb2,  $0ed1,  $1ef0
  108.    );
  109.  
  110. begin
  111.   __crc16 := crc16_table[((crc shr 8) and 255)] xor
  112.              (crc shl 8) xor value;
  113. end;
  114.  
  115.  
  116.  
  117. end.
  118.  
  119. {==========================================================================}
  120. {==========================================================================}
  121. {==========================================================================}
  122.  
  123. CRC.PAS
  124. {$M 65520, 0, 655360}
  125. Uses
  126.   Crt, Dos,
  127.   eco_lib;
  128.  
  129. Var
  130.   take32,
  131.   take16      : Boolean;
  132.   sourcepath,
  133.   source      : String;
  134.   numFiles, i : Word;
  135.   srec        : SearchRec;
  136.   filar       : Array[1..1024] of ^SearchRec;
  137.  
  138.  
  139.  
  140. Function convert32(fname: String; fsize: LongInt; x1, x2, y: Byte): String;
  141. Const
  142.   bufsize = 32768;
  143. Type
  144.   fbuf = Array[1..bufsize] of Byte;
  145. Var
  146.   i       :    Word;
  147.   source  :    File;
  148.   bread   :    Word;
  149.   Filebuf :   ^fbuf;
  150.   crc, tr : LongInt;
  151.   nr      :    Real;
  152.  
  153. begin
  154.   crc := $ffffffff;
  155.   tr := 0;
  156.   new(Filebuf);
  157.   assign(source, fname);
  158.   reset(source, 1);
  159.   GotoXY(x1, y);
  160.   Write(__rep(x2-x1-3, '░'));
  161.   Write('  ', fname);
  162.   Repeat
  163.     blockread(source, Filebuf^, bufsize, bread);
  164.     tr := tr + bread;
  165.     nr := tr/fsize;
  166.     nr := nr * (x2-x1-3);
  167.     GotoXY(x1, y);
  168.     Write(__rep(trunc(nr), '█'));
  169.     For i := 1 to bread do
  170.       crc := __crc32(Filebuf^[i], crc);
  171.   Until (bread = 0);
  172.   close(source);
  173.   GotoXY(x1, y);
  174.   dispose(Filebuf);
  175.   Write(fname:12, '  ', fsize:7, ' Bytes.  HEX-CRC/32: ',__tohexstr(crc, 4));
  176.   clreol; convert32 := '';
  177. end;
  178.  
  179. Function convert16(fname: String; fsize: LongInt; x1, x2, y: Byte): String;
  180. Const
  181.   bufsize = 32768;
  182. Type
  183.   fbuf = Array[1..bufsize] of Byte;
  184. Var
  185.   i       :    Word;
  186.   source  :    File;
  187.   bread   :    Word;
  188.   Filebuf :   ^fbuf;
  189.   crc, tr : LongInt;
  190.   nr      :    Real;
  191.  
  192. begin
  193.   crc := $0000;
  194.   tr := 0;
  195.   new(Filebuf);
  196.   assign(source, fname);
  197.   reset(source, 1);
  198.   GotoXY(x1, y);
  199.   Write(__rep(x2-x1-3, '░'));
  200.   Write('  ', fname);
  201.   Repeat
  202.     blockread(source, Filebuf^, bufsize, bread);
  203.     tr := tr + bread;
  204.     nr := tr/fsize;
  205.     nr := nr * (x2-x1-3);
  206.     GotoXY(x1, y);
  207.     Write(__rep(trunc(nr), '█'));
  208.     For i := 1 to bread do
  209.       crc := __crc16(Filebuf^[i], crc);
  210.   Until (bread = 0);
  211.   close(source);
  212.   GotoXY(x1, y);
  213.   dispose(Filebuf);
  214.   Write(fname:12, '  ', fsize:7, ' Bytes.  HEX-CRC/16: ', __tohexstr(crc, 2));
  215.   clreol;
  216.   convert16 := '';
  217. end;
  218.  
  219.  
  220.  
  221. Function convert16_32(fname:String; fsize: LongInt; x1, x2, y: Byte):String;
  222. Const
  223.   bufsize = 32768;
  224. Type
  225.   fbuf = Array[1..bufsize] of Byte;
  226. Var
  227.   i       :    Word;
  228.   source  :    File;
  229.   bread   :    Word;
  230.   Filebuf :   ^fbuf;
  231.   crc,
  232.   crc32,
  233.   tr      : LongInt;
  234.   nr      :    Real;
  235.  
  236. begin
  237.   crc := $0000;
  238.   tr := 0;
  239.   crc32 := $ffffffff;
  240.   new(Filebuf);
  241.   assign(source, fname);
  242.   reset(source, 1);
  243.   GotoXY(x1, y);
  244.   Write(__rep(x2-x1-3, '░'));
  245.   Write('  ', fname);
  246.   Repeat
  247.     blockread(source, Filebuf^, bufsize, bread);
  248.     tr := tr + bread;
  249.     nr := tr/fsize;
  250.     nr := nr * (x2-x1-3);
  251.     GotoXY(x1, y);
  252.     Write(__rep(trunc(nr), '█'));
  253.     For i := 1 to bread do begin
  254.       crc := __crc16(Filebuf^[i], crc);
  255.       crc32 := __crc32(Filebuf^[i], crc32);
  256.     end;
  257.   Until (bread = 0);
  258.   close(source);
  259.   GotoXY(x1, y);
  260.   dispose(Filebuf);
  261.   Write(fname:12, '  ', fsize:7,' Bytes.  HEX-CRC/16: ', __tohexstr(crc, 2),
  262.         ' 32: ', __tohexstr(crc32, 4));
  263.   clreol;
  264.   convert16_32 := '';
  265. end;
  266.  
  267.  
  268.  
  269.  
  270. {main}
  271. begin
  272.   source := fexpand(paramstr(1));
  273.   take32 := False;
  274.   take16 := False;
  275.   if paramstr(2) = '/32' then
  276.     take32 := True;
  277.   if paramstr(2) = '/16' then
  278.     take16 := True;
  279.   numFiles := 0;
  280.   findfirst(source, anyFile, srec);
  281.   While Doserror=0 do
  282.   begin
  283.     if not (((srec.attr and directory) > 0) or ((srec.attr and volumeid) > 0)
  284.              and (srec.size > 0)) then
  285.     begin
  286.       inc(numFiles);
  287.       new(filar[numFiles]);
  288.       filar[numFiles]^ := srec;
  289.       filar[numFiles]^.name := __up(filar[numFiles]^.name);
  290.     end; findnext(srec);
  291.   end;
  292.   Writeln(numFiles, ' File(s) found.');
  293.  
  294.   For i := 1 to numFiles do
  295.     if take32 then
  296.       Writeln(convert32(sourcepath + filar[i]^.name, filar[i]^.size,
  297.               5, 35, WhereY))
  298.       else
  299.       if take16 then
  300.         Writeln(convert16(sourcepath + filar[i]^.name, filar[i]^.size,
  301.                 5, 35, WhereY))
  302.       else
  303.         Writeln(convert16_32(sourcepath + filar[i]^.name, filar[i]^.size,
  304.                 5, 35, WhereY));
  305. end.
  306.  
  307.  
  308.  
  309.